Overload | Description |
---|---|
NBlocksQueue<T> Constructor() | Default queue constructor |
NBlocksQueue<T> Constructor(Int32) | Creates a new queue with the specified blocks size. |
NBlocksQueue<T> Constructor(INIterator<T>) | Creates a new queue, which is initialized with the remaining items of the specified iterator. |
NBlocksQueue<T> Constructor(INSet<T>) | Creates a new queue, which is initialized with the items of the specified set. |
NBlocksQueue<T> Constructor(Int32,INIterator<T>) | Creates a new queue, with the specified block size and initialized with the remaining items of the specified iterator. |
NBlocksQueue<T> Constructor(Int32,INSet<T>) | Creates a new queue, with the specified block size and initialized with the items of the specified set. |